home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 March / PCWMAR09.iso / Software / Freeware / Adobe Media Player 1.6 / adobe_media_player.air / AMP.swf / scripts / mx / logging / LogEventLevel.as < prev    next >
Encoding:
Text File  |  2008-11-25  |  596 b   |  30 lines

  1. package mx.logging
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public final class LogEventLevel
  8.    {
  9.       mx_internal static const VERSION:String = "3.2.0.3958";
  10.       
  11.       public static const FATAL:int = 1000;
  12.       
  13.       public static const ERROR:int = 8;
  14.       
  15.       public static const WARN:int = 6;
  16.       
  17.       public static const INFO:int = 4;
  18.       
  19.       public static const DEBUG:int = 2;
  20.       
  21.       public static const ALL:int = 0;
  22.       
  23.       public function LogEventLevel()
  24.       {
  25.          super();
  26.       }
  27.    }
  28. }
  29.  
  30.